home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 007a / cug315.zip / FFT.H < prev    next >
C/C++ Source or Header  |  1990-05-16  |  423b  |  19 lines

  1.  
  2. #ifndef FFT_H
  3. #define FFT_H
  4.  
  5.  
  6. #define PI 3.14159265358979
  7. #define FORWARD -1
  8. #define INVERSE 1
  9.     /* the filter option defines a filter from 1.0 to MINVAL.  All */
  10.     /* amplitudes below MINVAL are set to 0.0 */
  11. #define MINVAL 0.00001
  12.  
  13. void fft(), xy_to_polar(), polar_to_xy();
  14. void unscramble_transform(), minmax(), data_multiply();
  15. double *get_filter();
  16. int dbl_scale(), int_scale(), long_scale();
  17.  
  18. #endif
  19.